View Javadoc

1   /*
2    * Copyright 2004-2005, University Health Network.  All rights reserved. Distributed under the BSD 
3    * license (see http://opensource.org/licenses/bsd-license.php).
4    *  
5    * MethodDataSourceIllegalAccessException.java
6    *
7    * Created on 21-Dec-2004 at 3:49:58 PM
8    */
9   package ca.uhn.cache.exception;
10  
11  
12  /***
13   * Thrown by the <code>MethodDataSource</code> class when an instance
14   * of <code>IllegalAccessException</code> is captured.
15   * 
16   * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
17   * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:53:03 $ by $Author: bryan_tripp $
18   */
19  public class MethodDataSourceIllegalAccessException extends DataSourceException {
20  
21      /***
22       * {@inheritDoc}
23       */
24      public MethodDataSourceIllegalAccessException( IllegalAccessException theCause ) {
25          super( theCause );
26      }
27  
28      /***
29       * {@inheritDoc}
30       */
31      public MethodDataSourceIllegalAccessException( String theMessage, IllegalAccessException theCause ) {
32          super( theMessage, theCause );
33      }
34  
35  }